home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_441 / dme / rexmacs / get.dme < prev    next >
Text File  |  1992-05-06  |  477b  |  19 lines

  1. /*   Inserts the file specified by the 1st argument immediately above     */
  2. /*   the line the cursor is on.  If no filename is specified, the file     */
  3. /*   "t:$bsave" is used if it exists.  Arguments following the 1st one   */
  4. /*   are ignored.                             */
  5. /*                                     */
  6. /*   Kim DeVaughn  12/21/87                         */
  7.  
  8. options failat 5
  9. rc = 0
  10.  
  11. parse arg filename junk
  12. if filename = ""
  13.    then if exists("t:$bsave")
  14.        then insfile "t:$bsave"
  15.        else nop
  16.    else insfile filename
  17. exit rc
  18.  
  19.